| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > DeleteRow Method : DeleteRow(IEnumerable<Int32>) Method |
Type: IEnumerable<int>
The specified indices of rows.
void DeleteRow( IEnumerable<int> rows )
Type: IEnumerable<int>
The specified indices of rows.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // remove rows table.DeleteRow(new [] { 0, 1, 5, 7 });
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // remove rows $table->DeleteRow(array(0, 1, 5, 7));
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven